home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 April / PCWorld_2008-04_cd.bin / v cisle / ozo / zotero-1.0.3.xpi / chrome / zotero.jar / content / zotero / integrationDocPrefs.xul < prev    next >
Encoding:
Extensible Markup Language  |  2008-01-13  |  1.7 KB  |  45 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/global.css"?>
  3. <?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
  4. <?xml-stylesheet href="chrome://zotero/skin/bibliography.css"?>
  5. <!DOCTYPE window SYSTEM "chrome://zotero/locale/zotero.dtd">
  6.  
  7. <dialog
  8.     id="doc-prefs-dialog"
  9.     orient="vertical"
  10.     buttons="accept"
  11.     title="&zotero.integration.docPrefs.title;"
  12.     onload="Zotero_File_Interface_Bibliography.init();"
  13.     ondialogaccept="Zotero_File_Interface_Bibliography.acceptSelection();"
  14.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  15.     style="padding: 0">
  16.     
  17.     <script src="include.js"/>
  18.     <script src="bibliography.js"/>
  19.  
  20.     <vbox id="zotero-bibliography-container" style="padding: 0.5em">
  21.         <groupbox>
  22.             <caption label="&zotero.bibliography.style.label;"/>
  23.             <listbox id="style-listbox" onselect="Zotero_File_Interface_Bibliography.styleChanged()"/>
  24.         </groupbox>
  25.         
  26.         <groupbox>
  27.             <caption label="&zotero.integration.prefs.displayAs.label;"/>
  28.             <radiogroup id="displayAs" orient="horizontal">
  29.                 <radio id="footnotes" label="&zotero.integration.prefs.footnotes.label;" selected="true"/>
  30.                 <radio id="endnotes" label="&zotero.integration.prefs.endnotes.label;"/>
  31.             </radiogroup>
  32.         </groupbox>
  33.         
  34.         <groupbox>
  35.             <caption label="&zotero.integration.prefs.formatUsing.label;"/>
  36.             
  37.             <radiogroup id="formatUsing" orient="vertical">
  38.                 <radio id="fields" selected="true"/>
  39.                 <label class="radioDescription" id="fields-caption"/>
  40.                 <radio id="bookmarks" label="&zotero.integration.prefs.bookmarks.label;"/>
  41.                 <label class="radioDescription" id="bookmarks-caption">&zotero.integration.prefs.bookmarks.caption;</label>
  42.             </radiogroup>
  43.         </groupbox>
  44.     </vbox>
  45. </dialog>